08. Quiz: The Price is Right (6-3)
Directions:
Starting with this array of prices
, change the prices of the 1st, 3rd, and 7th elements in the array.
var prices = [1.23, 48.11, 90.11, 8.50, 9.99, 1.00, 1.10, 67.00];
TIP: The 1st element of any array has an index of 0.
Afterwards, print out the prices
array to the console.
Your Code:
Start Quiz:
/*
* Programming Quiz: The Price is Right (6-3)
*/
var prices = [1.23, 48.11, 90.11, 8.50, 9.99, 1.00, 1.10, 67.00];
// your code goes here
INSTRUCTOR NOTE:
Have questions? Head to Knowledge for discussion with the Udacity Community.